@font-face {
  font-family: 'IBM Plex Sans';
  src: url('fonts/IBMPlexSans-VariableFont_wdth,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
}

@font-face {
  font-family: 'IBM Plex Sans';
  src: url('fonts/IBMPlexSans-Italic-VariableFont_wdth,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(to bottom, #2023ab 0%, #f180a0 100%);
  color: white;
}

.menuwrap {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 2000;
  height: 100vh;
}

.burger {
  position: absolute;
  top: 20px;
  left: -50px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  z-index: 2001;
  padding: 10px;
  background: rgba(20, 20, 20, 0.9);
  border-radius: 50%;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.burger:hover {
  background: rgba(44, 47, 224, 1);
}

.burger span {
  width: 20px;
  height: 2px;
  background: white;
  border-radius: 1px;
}

.slidemenu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100vh;
  background: rgba(44, 47, 224, 0.85);
  transition: right 0.4s ease;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
}

.menuwrap:hover .slidemenu {
  right: 0;
}

.links {
  padding: 80px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.btn1 {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 15px 20px;
  color: white;
  font-size: 1.1em;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: scale(1);
}

.btn1:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(234, 126, 157, 0.5);
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.supportnotice {
  font-size: 0.75em;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  margin: 5px 0 0 0;
  padding: 0 10px;
  line-height: 1.3;
  font-weight: 300;
}

.typingtext {
  font-size: 3em;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  text-align: center;
  overflow: hidden;
  border-right: 3px solid #ea7e9d;
  white-space: nowrap;
  margin: 0 auto;
  display: inline-block;
  animation: typing 4s steps(50, end), blink-caret 0.75s step-end infinite;
}

header {
  text-align: center;
  padding: 2em 0;
  margin-bottom: 1em;
}

@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink-caret {
  from, to { border-color: transparent; }
  50% { border-color: #ea7e9d; }
}

.splash {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(to bottom, #2c2fe0 0%, #ea7e9d 100%);
  transition: opacity 1s ease;
  cursor: pointer;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.splash::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;
}

.splash.fadeout {
  opacity: 0;
  pointer-events: none;
}

.bigtitle {
  font-size: 6em;
  margin: 0.2em 0;
}

.subtext {
  font-size: 1.2em;
  opacity: 0.7;
}

.hidden {
  display: none;
}

.story {
  max-width: 800px;
  margin: 0 auto;
  padding: 2em;
  font-size: 1.3em;
  line-height: 1.8em;
}


.box1 {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 2em;
  margin: 2em 0;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transform: scale(1);
  text-align: center;
}

.box1:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.picwrap {
  position: relative;
  text-align: center;
  margin: 3em 0;
  overflow: hidden;
  border-radius: 15px;
}

.imageoverlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 103, 197, 0.796);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.picwrap:hover .imageoverlay {
  opacity: 1;
}

.overlaycontent {
  text-align: center;
  max-width: 700px;
  padding: 2em;
}

.overlaycontent h3 {
  font-size: 1.8em;
  margin: 0 0 1em 0;
  color: rgb(255, 255, 255);
}

.overlaycontent p {
  font-size: 1.1em;
  line-height: 1.6;
  margin: 0;
}


.aboutsection {
  margin: 3em 0;
}

.aboutsection h2 {
  text-align: center;
  font-size: 2.2em;
  margin-bottom: 2em;
  color: white;
}

.aboutcards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2em;
  margin: 2em 0;
}

.aboutcard {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 2em;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transform: scale(1);
}

.aboutcard:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cardicon {
  font-size: 3em;
  margin-bottom: 0.5em;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.aboutcard h3 {
  font-size: 1.3em;
  margin: 0.5em 0;
  color: #ea7e9d;
  font-weight: 600;
}

.aboutcard p {
  font-size: 1em;
  line-height: 1.6;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.zoompic {
  max-width: 100%;
  border-radius: 15px;
  cursor: pointer;
}

.zoompic:hover {
  opacity: 0.9;
}

.playerctrl {
  display: flex;
  flex-direction: column;
  gap: 1em;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.playicon {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  font-size: 1.5em;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  transform: scale(1);
}

.playicon:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.waveviz {
  display: flex;
  align-items: end;
  justify-content: center;
  height: 100px;
  gap: 3px;
  flex: 1;
}

.bar {
  background: white;
  width: 4px;
  border-radius: 2px;
  height: 10px;
}

.plans {
  text-align: center;
}

.plans h2 {
  color: white;
  font-size: 2.5em;
  margin-bottom: 0.5em;
  line-height: 1.3;
}

.plans p {
  text-align: center;
  color: rgba(255,255,255,0.8);
  font-size: 1.2em;
  margin-bottom: 3em;
}

.cardswrap {
  display: flex;
  gap: 2em;
  justify-content: center;
  margin: 2em auto;
  max-width: 1200px;
  padding: 2em;
  align-items: stretch;
}

.card1 {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 2.5em 2em 2em 2em;
  flex: 1;
  max-width: 350px;
  min-height: 500px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  transform: scale(1);
}

.card1:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.03);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.planname {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 1em;
  margin-top: 0;
}

.price {
  font-size: 2em;
  font-weight: bold;
  color: #ea7e9d;
  margin-bottom: 1em;
}

.features {
  list-style: none;
  padding: 0;
  margin: 1.5em 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.features li {
  padding: 0.8em 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.95em;
}

.features li:last-child {
  border-bottom: none;
}

.selectbtn {
  background: linear-gradient(45deg, #2c2fe0, #ea7e9d);
  border: none;
  border-radius: 25px;
  padding: 1em 2em;
  color: white;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  margin-top: auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  transform: scale(1);
}

.selectbtn:hover {
  opacity: 0.9;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.card1:nth-child(2) {
  border: 2px solid #ea7e9d;
  background: rgba(234, 126, 157, 0.15);
}

.card1:nth-child(2)::before {
  content: "POPULAR CHOICE";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #ea7e9d;
  color: white;
  padding: 0.5em 1.2em;
  border-radius: 20px;
  font-size: 0.75em;
  font-weight: bold;
}

.card1:nth-child(2) .planname::after {
  content: " ⭐";
  color: #ff497c;
}

footer {
  text-align: center;
  padding: 2em;
  font-size: 0.9em;
}


.expandabletitle {
  cursor: pointer;
  user-select: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 1em 0;
  transition: color 0.3s ease;
}

.expandabletitle:hover {
  color: #ea7e9d;
}

.toggleicon {
  font-size: 0.8em;
  transition: transform 0.3s ease;
}

.toggleicon.rotated {
  transform: rotate(180deg);
}

.expandablecontent {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

.expandablecontent.expanded {
  max-height: 1000px;
  transition: max-height 0.5s ease-in;
}


.brandname {
  background: linear-gradient(45deg, #2c2fe0, #ea7e9d, #f180a0, #667eea);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: bold;
  font-size: 1.6em;
  animation: gradientShift 3s ease-in-out infinite;
  position: relative;
}

.brandname::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(44, 47, 224, 0.1), rgba(234, 126, 157, 0.1));
  border-radius: 4px;
  z-index: -1;
  filter: blur(8px);
  animation: glowPulse 2s ease-in-out infinite alternate;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes glowPulse {
  0% { opacity: 0.3; }
  100% { opacity: 0.7; }
}

.playerctrl p {
  margin: 0;
  font-size: 1.1em;
  font-weight: bold;
  color: #ffffff;
}

.femaleplayer {
  margin-top: 2em;
}


.videocontainer {
  margin: 2em 0;
  text-align: center;
}

.roundedvideo {
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 100%;
  height: auto;
}

.roundedvideo:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.videooverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  pointer-events: none;
}

.videooverlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}


.roundedvideo.playing {
  position: relative;
  z-index: 2001;
}
